@Matt-Nelson said in Easy way to upgrade all installed packages?: opkg list-upgradable | cut -d' ' -f1 | while read -r line; do opkg upgrade "$line"; done @Matt-Nelson I believe your script to be accurate for an Omage2(+) but on an original omega the console output seems slightly different. Here's my working version of your script: opkg list-upgradable | cut -d' ' -f3 | cut -d'(' -f2 | while read -r line; do opkg upgrade "$line"; done Now, I'm running 0.1.4-b336 and everything seems to be at the latest but nice to keep a record here for future-selves.